home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / UNIXTOOL / GNU / PERL / PERL5SRC.ZIP / !Perl / Makefile
Makefile  |  1995-07-03  |  655b  |  23 lines

  1. # Project:   Perl5
  2.  
  3. .SUFFIXES:     .o .c
  4. CC         = cc
  5. LD         = link
  6. INCLUDE        = -IC:,InterNet:
  7. Libraries     = C:o.stubs C:o.utils Internet:o.NetLib
  8. CCflags     = -c -depend !Depend $(INCLUDE) -ffa -wan -DRISCOS -DCONSERVATIVE -DDEBUGGING
  9. linkflags     = -aif -o $@
  10.  
  11. Files1        = o.miniplmain o.perl o.perly o.pp o.pp_hot o.pp_ctl o.pp_sys o.regcomp o.regexec
  12. Files2        = o.av o.scope o.op o.doop o.doio o.dump o.hv o.mg
  13. Files3        = o.gv o.sv o.taint o.toke o.util o.deb o.run o.acorn
  14.  
  15. Perl:         $(Files1) $(Files2) $(Files3) $(Libraries)
  16.         $(LD) $(linkflags) $(Libraries) $(Files1) $(Files2) $(Files3) 
  17.         squeeze perl
  18.  
  19. .c.o:;        $(CC) $(CCflags) -o $@ c.$*
  20.  
  21.  
  22. # Dynamic dependencies:
  23.